7e2cd43a4011a1cee9597d6ccf905a296ff136eb,plugins/hg4idea/src/org/zmlx/hg4idea/command/HgUpdateCommand.java,HgUpdateCommand,execute,#,53
Before Change
final HgCommandExecutor executor = new HgCommandExecutor(project);
executor.setShowOutput(true);
return executor.executeInCurrentThread(repo, "update", arguments);
}
}
After Change
final HgCommandExecutor executor = new HgCommandExecutor(project);
executor.setShowOutput(true);
final HgCommandResult result = executor.executeInCurrentThread(repo, "update", arguments);
project.getMessageBus().syncPublisher(HgVcs.BRANCH_TOPIC).update(project);
return result;
}
}